home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 2001 Haziran
/
CHIP Haziran2001.iso
/
prog
/
haziran
/
19
/
setup.exe
/
data.z
/
pci_scan.c
< prev
next >
Wrap
C/C++ Source or Header
|
2001-04-11
|
516b
|
21 lines
////////////////////////////////////////////////////////////////
// File - PCI_SCAN.C
//
// A utility for getting a list of the PCI cards installed
// and the resources allocated for each one of them (memory
// ranges, IO ranges and interrupts).
//
////////////////////////////////////////////////////////////////
#include "../../include/windrvr.h"
#include "../shared/pci_diag_lib.h"
#include <stdio.h>
int main (int argc, char *argv[])
{
PCI_Print_all_cards_info();
return 0;
}